home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / msqc25t1 / cmdlnarg.c < prev    next >
C/C++ Source or Header  |  1990-02-03  |  631b  |  23 lines

  1. /* cmdlnarg.c       By Tom Harrold      Tue. Dec. 6, 1988
  2. */
  3.  
  4. /* This program will print out the command line arguments to test
  5. out and show how the argv and agrc function works.
  6. */
  7.  
  8. #include <stdio.h>
  9.  
  10. main(argc, argv)
  11.     int argc;   /* number of command line arguments */
  12.     char *argv[];   /* actual command line arguments */
  13. {
  14.     int index;  /* index into the arry */
  15.                 /* containing command line */
  16. /* print each command on one line */
  17.     for (index = 0; index < argc; ++index)
  18.     printf("%d %s ", index, argv[index]);
  19.     printf("  arg = %d ", argc);
  20.     putchar('\n'); /* newline */
  21. }
  22.  
  23.